home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 25
/
CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso
/
CUCD
/
WWW
/
http
/
www.wirenet.co.uk
/
files
/
thor25_arexx.lha
/
GoldED
/
Style.ged
< prev
next >
Wrap
Text File
|
1995-06-09
|
725b
|
40 lines
/* Style.ged by Troels Walsted Hansen
** $VER: Style.ged v1.00 (09.06.95)
**
** Purpose: Apply style to word.
*/
options results
parse arg stylechar
/* needs GoldED functions */
p = address() || ' ' || show('P',,)
portname = pos('GOLDED.',p)
if portname > 0 then portname = word(substr(p,portname),1)
else
do
say 'No GoldED port found!'
exit 10
end
address(portname)
REQLIST ENTRY '"Bold"' '"Italic"' '"Reverse"' '"Underline"' VAR result TITLE '"Select style"'
select
when(result = 0) then stylechar = '*'
when(result = 1) then stylechar = '/'
when(result = 2) then stylechar = '#'
when(result = 3) then stylechar = '_'
otherwise exit
end
PREV
FIX VAR stylechar
TEXT T stylechar
ENDWORD
RIGHT
TEXT T stylechar